home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 426-450 / disk_432 / reader / history < prev    next >
Text File  |  1992-05-06  |  3KB  |  58 lines

  1.  
  2. Reader             Scans a word list to find those that can be made with
  3.                    the specified letters.
  4.  
  5.                    Compiled with Lattice 4.0
  6.  
  7. ---------------------------------------------------------------------------
  8.  
  9. 15 Jun 90   V0.01  Minimum level program. It works, just!
  10.                    Supports spares and prints valid words at 5 per line.
  11.                    All debugging code removed for clarity.
  12.                    All code now commented.
  13.  
  14. 16 Jun 90   V0.1   Now outputs to RAM:VALID and screen. (no choice yet!)
  15.                    File output includes a count by word length and a
  16.                       count by initial letter.
  17.                    Code tidied slightly, removing unused variables.
  18.                    Title added to output.
  19.  
  20. 16 Jun 90   V0.15  Switch for specific word length [4 to 9 or long(10+)].
  21.                    Printf's replaced by puts where possible.
  22.  
  23. 17 Jun 90   V0.2   Percentage success rate added.
  24.                    Discovered system will guru if RAM:WORDS not present!!
  25.                       but not yet fixed.
  26.                    File output now has a table listing words found
  27.                       by length and initial letter.
  28.                    Program guru'd when finding Z words due to an incorrect
  29.                       array dimension, now fixed.
  30.                    Changed some ints to shorts but most vars still global.
  31.                    Extended table data showing more percentages.
  32.                    Cleaned up output format.
  33.  
  34. 19 Jun 90   V0.3   Added Matcher facility and suitable switch. [-m]
  35.                    Made a separate function of recording a valid word.
  36.  
  37. 25 Jun 90   V0.4   Tidied up code a little, reducing global variables.
  38.                    Added code to avoid crash if data file not in place.
  39.                    Program now looks for data file in RAM: or on disk,
  40.                       and doesn't crash if not found!
  41.  
  42. 14 Oct 90   V0.5   After testing, corrected wordlist file naming, now
  43.                       using WORDALL.DAT in RAM: or WORDLIST: (possibly
  44.                       requiring an assign)
  45.                    Added -z switch to clear contents of VALID. Omitting
  46.                       will append a new scan to previous scan.
  47.                    Corrected some titling. SEARCHING for a match or
  48.                       SCANNING for letter strings.
  49.                    Limit spares to '.' only. Some problems occurred when
  50.                       using other non-letter characters ($ gives major
  51.                       problems!).
  52.                    First test by someone other than me. Thanks stuart!
  53.  
  54.  6 Jan 91   V1.0   First official release for Fred Fish library. Hopefully
  55.                       bug free!!
  56.                    Writes valid word list to VLD:valid, enabling the file
  57.                       to be written to disk.
  58.